home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1995 November
/
EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso
/
earcd
/
program
/
misc
/
smalltlk.lha
/
Smalltalk3.09
/
src
/
makefile
< prev
next >
Wrap
Makefile
|
1995-08-26
|
4KB
|
111 lines
CC = gcc
#CFLAGS = -O -noixemul
# define groups of files, to make later commands easier
INTERPc = memory.c names.c news.c interp.c
INTERPo = memory.o names.o news.o interp.o
PRIMITIVEc = primitive.c filein.c lex.c parser.c unixio.c
PRIMITIVEo = primitive.o filein.o lex.o parser.o unixio.o
basicST = basic.st mag.st collect.st
unixST = file.st mult.st
testST = test.st queen.st
CFILES = *.h $(INTERPc) $(PRIMITIVEc) st.c initial.c tty.c muiprim.c muiinit.c
OFILES = $(INTERPo) $(PRIMITIVEo)
STFILES = $(basicST) $(unixST) $(testST) tty.st graphics.st muiwin.st
FILES = README Makefile vms.com $(CFILES) $(STFILES) *.ms
# the following are used only by turboc on the ibm pc
TURBOc=memory names news interp primitive filein lex parser unixio tty
TINCLUDE=c:\turboc\include
TLIB=c:\turboc\lib
# INTERFACE=
# the following is for those poor souls who say ``make'' without looking
help:
@echo "select one of the following to make"
@echo "bsdtty: Berkeley 4.2/4.3 with teletype interface "
@echo "sysvtty: System V with teletype interface "
@echo "bsdx11: Berkeley 4.2/4.3 with stdwin interface on top of X11"
@echo "ibmturboc: IBM PC with Turbo C compiler (see install.ms)"
@echo "amigagcc: Amiga with GNU C compiler"
@echo "amigamui: Amiga GNU C with MUI interface"
winfiles: $(OFILES) muiprim.o muiinit.o initial.o st.o
# initial - the initial object maker
initial: $(INTERPo) $(PRIMITIVEo) initial.o $(INTERFACE)
$(CC) $(CFLAGS) -o initial $(INTERPo) $(PRIMITIVEo) initial.o $(INTERFACE) -lm $(LIBS)
# st - the actual bytecode interpreter
st: $(INTERPo) $(PRIMITIVEo) st.o $(INTERFACE)
$(CC) $(CFLAGS) -o st $(INTERPo) $(PRIMITIVEo) st.o $(INTERFACE) -lm $(LIBS)
# bsdtty - berkeley 4.2/4.3 with tty style interface
bsdtty:
make "CFLAGS=$(CFLAGS) -DB42" "LIBS=" "INTERFACE= tty.o" initial st
initial $(basicST) $(unixST) tty.st
bsdtty.lint:
lint -DB42 $(INTERPc) $(PRIMITIVEc) tty.c initial.c -lm
lint -DB42 $(INTERPc) $(PRIMITIVEc) tty.c st.c -lm
# sysvtty - system V with tty style interface
sysvtty:
make "CFLAGS=$(CFLAGS) -DSYSV" "LIBS=" "INTERFACE= tty.o" initial st
initial $(basicST) $(unixST) tty.st
sysvtty.lint:
lint -DSYSV $(INTERPc) $(PRIMITIVEc) tty.c initial.c -lm
lint -DSYSV $(INTERPc) $(PRIMITIVEc) tty.c st.c -lm
# amigagcc - Amiga GNU C with tty style interface
amigagcc:
make "CFLAGS=$(CFLAGS) -DAMIGA" "LIBS=" "INTERFACE= tty.o" initial st
initial $(basicST) $(unixST) tty.st
# amigamui - Amiga GNU C with MUI interface
amigamui:
make "CFLAGS=-O -noixemul -DAMIGA -DMUIWIN" "LIBS=" "INTERFACE= muiprim.o muiinit.o" initial st
initial $(basicST) $(unixST) graphics.st muiwin.st
# bsdterm - berkekey 4.2/4.3 with stdwin interface on top of termcap
# requires Guido van Rossum's standard window package
# (currently doesn't work)
bsdterm: stdw.o
make "CFLAGS=$(CFLAGS) -DB42 -DSTDWIN" "LIBS= -ltermcap" "INTERFACE= winprim.o stdw.o" initial st
initial $(basicST) $(unixST) graphics.st stdwin.st
# bsdx11 - berkekey 4.2/4.3 with stdwin interface on top of x11
# requires Guido van Rossum's standard window package
bsdx11: stdw.o
make "CFLAGS=$(CFLAGS) -DB42 -DSTDWIN" "LIBS= -lX" "INTERFACE= winprim.o stdw.o" initial st
initial $(basicST) $(unixST) graphics.st stdwin.st
bsdx11.lint:
lint -DB42 -DSTDWIN $(INTERPc) $(PRIMITIVEc) winprim.c initial.c -lm -lX
lint -DB42 -DSTDWIN $(INTERPc) $(PRIMITIVEc) winprim.c st.c -lm -lX
# all the dependencies on .h files
filein.o : filein.c env.h memory.h names.h lex.h
initial.o : initial.c env.h memory.h names.h
interp.o : interp.c env.h memory.h names.h interp.h
lex.o : lex.c env.h memory.h lex.h
memory.o : memory.c env.h memory.h
names.o : names.c env.h memory.h names.h
news.o : news.c env.h memory.h names.h
parser.o : parser.c env.h memory.h names.h interp.h lex.h
primitive.o : primitive.c env.h memory.h names.h
st.o : st.c env.h memory.h names.h
tty.o : tty.c env.h memory.h
unixio.o : unixio.c env.h memory.h names.h
muiprim.o : muiprim.c muist.h env.h memory.h names.h
muiinit.o : muiinit.c muist.h env.h memory.h names.h
# - pack - pack up the files for mailing
pack: $(FILES)
packmail $(FILES)
# - tar - make a compressed tar file
tar: $(FILES)
tar cvf small.v3.tar $(FILES)
compress small.v3.tar